home *** CD-ROM | disk | FTP | other *** search
/ MacTech 1 to 12 / MacTech-vol-1-12.toast / Source / MacTech® Magazine / Volume 09 - 1993 / 09.06 Jun 93 / TReportPrinter / TDemoApplication.h < prev    next >
Encoding:
C/C++ Source or Header  |  1992-11-01  |  381 b   |  17 lines  |  [TEXT/MPS ]

  1. #ifndef __DEMOAPPLICATION__
  2. #define __DEMOAPPLICATION__ 1
  3.  
  4. #include <UApplication.h>
  5.  
  6. #define kSignature            'DEMO'            // Application signature 
  7. #define kFileType            'PROJ'            // Data file type 
  8.  
  9. class TDemoApplication: public TApplication
  10. {
  11.     public:        
  12.         virtual pascal void IDemoApplication(void);
  13.         virtual pascal TDocument* DoMakeDocument(CommandNumber, TFile* itsFile);
  14. };    
  15.  
  16. #endif
  17.